GetRange
Returns a Range object that represents the part of the document contained in the specified paragraph.
Syntax
expression.GetRange(Start, End);
expression
- A variable that represents a ApiParagraph class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
Start | Required | Number | Start position index in the current element. | |
End | Required | Number | End position index in the current element. |
Returns
Example
This example shows how to get a Range object that represents the part of the doc contained in the specified paragraph.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("This is just a sample paragraph.");
let range = paragraph.GetRange(8, 11);
range.SetBold(true);